- Enable the
multilibrepository by editing/etc/pacman.conf - Install WineHQ and some other optional dependencies:
$ pacman -Syu wine $ pacman -S --asdeps lib32-mpg123 lib32-gnutls {lib32-,}gst-plugins-base-libs \ lib32-alsa-plugins lib32-libpulse lib32-openal $ yay -S lib32-unixodbc # or your favourite AUR helper
- We'll install a 64-bit version of iTunes, so no need to set
WINEARCH
Discover gists
See the new site: https://postgresisenough.dev
Markdown - это облегчённый язык разметки, который преобразует текст в структурированный HTML. Следующее руководство поможет вам разобраться, как использовать Markdown.
# Заголовок первого уровня
## Заголовок второго уровня
### Заголовок третьего уровня
#### Заголовок четвёртого уровня
##### Заголовок пятого уровня
- Visit fmhy.net/android-iosguide#ios-ipas for more sources.
- Sideloading Guide: https://rentry.co/sideloadingguide, https://ios.cfw.guide/sideloading-apps/
| #!/usr/bin/env bash | |
| # Usage: ./cs "your prompt" | |
| # Runs Claude headlessly, suppresses the TUI, prints Claude's final reply on stdout. | |
| set -uo pipefail | |
| PROMPT="$*" | |
| REPLY_FILE=$(mktemp) | |
| SESSION_ID=$(uuidgen | tr 'A-Z' 'a-z') | |
| ENC_CWD=$(pwd | sed 's|/|-|g') |
| #!/usr/bin/python3 | |
| """Script to unregister discord application commands""" | |
| import sys | |
| from getpass import getpass | |
| from time import sleep | |
| import requests | |
| verbose = "-v" in sys.argv | |
| application_id = input("Application ID: ") |
A curated list of unicode characters I want to have quick reference toward, including their literal presentation (where possible), description from the unicode table, various representations, and how to enter it as a Vim digraph*.
They are grouped by category, including a link to the relevant Unicode block. Also see the full list of Unicode blocks
| # Edit this configuration file to define what should be installed on | |
| # your system. Help is available in the configuration.nix(5) man page, on | |
| # https://search.nixos.org/options and in the NixOS manual (`nixos-help`). | |
| { config, lib, pkgs, ... }: | |
| { | |
| imports = | |
| [ # Include the results of the hardware scan. | |
| ./hardware-configuration.nix |
A pattern for building personal knowledge bases using LLMs.
This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.
Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.